/* ===== MAIN STYLESHEET ===== */
/* Import additional stylesheets */
@import url('sax dark mode.css');
@import url('sax components.css');

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== CSS VARIABLES FOR THEMING ===== */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fdfcf8;
  --text-primary: #2c2c2c;
  --text-secondary: #666;
  --accent-color: #c5a059;
  --accent-hover: #a78642;
  --border-color: #f0f0f0;
  --shadow-light: rgba(0,0,0,0.05);
  --shadow-medium: rgba(0,0,0,0.1);
  --shadow-heavy: rgba(0,0,0,0.15);
  --overlay-dark: rgba(0,0,0,0.45);
  --card-bg: #ffffff;
  --footer-bg: #1a1a1a;
  --footer-text: #ccc;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: default;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-primary);
  font-weight: 600;
}

.bg-beige {
  background: var(--bg-secondary);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  width: 100%;
  background: var(--bg-primary);
  z-index: 100;
  box-shadow: 0 2px 10px var(--shadow-medium);
  transition: background-color 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 30px;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-primary);
}

#mobileMenu {
  display: none;
  flex-direction: column;
  padding: 20px;
  background: var(--bg-primary);
}

#mobileMenu a {
  padding: 10px 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1562654501-a0ccc0fc3fb1") center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sax-hero {
  background: url("https://images.unsplash.com/photo-1415201364774-f6f0bb35f28f?fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDE3fHx8ZW58MHx8fHx8&ixlib=rb-4.1.0&q=60&w=3000") center/cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
  z-index: 1;
}

.tagline {
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-content h2 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons button {
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  background: var(--accent-color);
  color: white;
}

.hero-buttons button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.hero-buttons button.outline {
  background: transparent;
  border: 2px solid white;
}

.hero-buttons button.outline:hover {
  background: white;
  color: #2c2c2c;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HIDDEN UTILITY ===== */
.hidden {
  display: none;
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: var(--footer-text);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-section a {
  display: block;
  color: var(--footer-text);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .section-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* ===== SCROLL PROGRESS INDICATOR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 101;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-color), #d4af6a, var(--accent-color));
  width: 0%;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px var(--accent-color);
}

/* ===== FLOATING MUSIC PLAYER ===== */
.floating-player {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 350px;
}

.floating-player.expanded {
  max-width: 400px;
}

.player-content {
  padding: 15px;
}

.player-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #d4af6a);
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.player-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.6);
}

.player-info {
  margin-top: 10px;
  text-align: center;
}

.player-title {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.player-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 0;
}

.floating-player.expanded .player-expanded {
  max-height: 200px;
  margin-top: 15px;
}

/* ===== AVAILABILITY BADGE ===== */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(40, 167, 69, 0.15);
  border: 2px solid #28a745;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #28a745;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.availability-badge span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 30px 0;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.3s backwards;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 0.95rem;
}

.proof-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.proof-item strong {
  color: var(--accent-color);
  font-size: 1.1rem;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: var(--card-bg);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow-light);
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent-color), #d4af6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.newsletter-container h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.newsletter-container > p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.newsletter-form button {
  padding: 15px 30px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(197, 160, 89, 0.3);
}

.newsletter-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.newsletter-note i {
  color: var(--accent-color);
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 768px) {
  .floating-player {
    bottom: 20px;
    right: 20px;
    max-width: 280px;
  }
  
  .social-proof {
    gap: 15px;
  }
  
  .proof-item {
    font-size: 0.85rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form button {
    justify-content: center;
  }
  
  .newsletter-container {
    padding: 40px 25px;
  }
}